ScanProcessor

class ScanProcessor(documentDetector: DocumentDetector, orientationDetector: OrientationDetector)

This class is used to apply a sequence of image operations on a picture: perspective correction, curvature correction and image enhancement. Each of these operations can be configured using a configuration object.

Constructors

Link copied to clipboard
constructor(context: Context)
constructor(documentDetector: DocumentDetector, orientationDetector: OrientationDetector)

Types

Link copied to clipboard
object Companion
Link copied to clipboard
class Configuration<O>(    perspectiveCorrection: ScanProcessor.PerspectiveCorrection,     curvatureCorrection: ScanProcessor.CurvatureCorrection,     enhancement: ScanProcessor.Enhancement,     rotation: ScanProcessor.Rotation,     readability: ScanProcessor.Readability = Readability.disabled(),     outputConfiguration: ScanProcessor.OutputConfiguration<O>)

Parameters of the processing.

Link copied to clipboard

Configuration for curvature correction.

Link copied to clipboard

Configuration for image enhancement.

Link copied to clipboard

Style for the magic filter

Link copied to clipboard

Configuration controlling the output format of the processed image, either as a file or a bitmap.

Link copied to clipboard

Configuration for perspective correction. When this configuration is enabled, perspective correction will be applied to the image, either using the result of the document detection, or the Quadrangle provided in this configuration.

Link copied to clipboard

Configuration for the readability feature. When this configuration is enabled, the readability of the image will be estimated, possibly based on several parameters (eg sharpness, brightness…). This is especially suitable and accurate for text documents.

Link copied to clipboard

Level of readability of the processed scan

Link copied to clipboard
class Result<T>(    val appliedQuadrangle: Quadrangle,     val appliedFilter: FilterType?,     val appliedFilterConfiguration: FilterConfiguration,     val appliedRotation: RotationAngle,     val readabilityLevel: ScanProcessor.ReadabilityLevel?,     val output: T)

Result of the processing.

Link copied to clipboard
class Rotation

Configuration for the orientation of the scan, which controls whether or not the orientation of the scan should be determined automatically, or if the scan should be processed with a specific rotation angle.

Functions

Link copied to clipboard

Process image file using the given configuration.